The function end_sdei_explicit_dispatch() was intended to be
end_sdei_synchronous_dispatch() which does the opposite of
begin_sdei_synchronous_dispatch(). This patch fixes that.
No functional changes.
Change-Id: I141bd91eb342ecf4ddfd05b49513eee4549e7a56
Signed-off-by: Jeenu Viswambharan <[email protected]>
return 0;
}
-static void end_sdei_explicit_dispatch(struct jmpbuf *buffer)
+static void end_sdei_synchronous_dispatch(struct jmpbuf *buffer)
{
longjmp(buffer);
}
}
/* End the outstanding dispatch */
- end_sdei_explicit_dispatch(disp_ctx->dispatch_jmp);
+ end_sdei_synchronous_dispatch(disp_ctx->dispatch_jmp);
return 0;
}